home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000080_news@newsmaster….columbia.edu _Fri Jul 18 12:50:20 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id MAA02706
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 18 Jul 1997 12:50:19 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id MAA13512
  7.     for kermit.misc@watsun; Fri, 18 Jul 1997 12:50:19 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.os.vms,comp.protocols.kermit.misc
  11. Subject: Re: Paging software wanted
  12. Date: 18 Jul 1997 16:50:17 GMT
  13. Organization: Columbia University
  14. Lines: 63
  15. Message-ID: <5qo6s9$7tt$1@apakabar.cc.columbia.edu>
  16. References: <33BC2FB3.65C2@pacbell.net> <33C50E9D.17EE@mci.com> <01bc8fc9$63e546e0$ec0beec3@vafr> <01bc907e$783f1390$28edd8c0@rmpce9>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.os.vms:156977 comp.protocols.kermit.misc:7351
  19.  
  20. In article <01bc907e$783f1390$28edd8c0@rmpce9>,
  21. Michael Gacsaly <mg@riem.com> wrote:
  22. : > In article <33BC2FB3.65C2@pacbell.net>,
  23. : > Bill Robertson  <wcr@pacbell.net> wrote:
  24. : > : Where can we get software to run on VMS 6.2 (Alpha) that will dial
  25. : > : out and activate a pager?
  26. :
  27. : ... I wrote my own using CKERMIT which worked using a terminal server.
  28. : Note that different pager companies (and even the same company over time)
  29. : use different protocols.  Ask your pager comany for the computer-to-
  30. : computer protocol specification (it is likely different and more reliable
  31. : than the human dial-up interface since it will generally use some kind of
  32. : checksum on messages).  Then use CKERMIT to format and send the message.
  33. : I have a VMS BEEPER CLD, FORTRAN program, DCL procedure and CKERMIT
  34. : procedure to do this.  It likely would just be a start, since interfaces
  35. : vary.  email me if you want a copy.  If many want it I will post it (but
  36. : I suggest using the email systems).
  37. there are a bunch of C-Kermit pager scripts floating around, written for
  38. C-Kermit 5A.  One was even published in a magazine a few years ago (DEC
  39. Professional, I think).
  40.  
  41. There are three interfaces to Alpha paging services:
  42.  
  43.  1. Voice only: You call up the service, speak to an operator, and
  44.     dictate the page.
  45.  
  46.  2. Online, interactive.  You dial up with a terminal and respond to a
  47.     series of prompts, giving the PIN and message.
  48.  
  49.  3. Online, protocol.  You dial up with a computer and use a well-defined
  50.     error-detecting and -correcting protocol to send the page.
  51.  
  52. The predominant example of Type 3 is Telocator Alphanumeric Protocol (TAP).
  53. The dialogs in Type 2 are usually just a "user friendly" front-end to
  54. TAP.  They all start off with an "ID=" prompt.  If you reply in a certain
  55. way, that gets you right into TAP.  This is very similar to how you can
  56. dial up a terminal server and then go interactive, or else start up a SLIP
  57. or PPP session.
  58.  
  59. Most of the scripts that have been floating around since 1992 or
  60. thereabouts are (a) based on C-Kermit 5A, and (b) talk Type 2 services,
  61. and are therefore not very portable.  A TAP script should work with any
  62. service at all that supports TAP.
  63.  
  64. C-Kermit 6.0 includes new functions especially designed for communicating
  65. with pagers, and the Alpha pager script that comes with C-Kermit 6.0
  66. implements TAP in a robust manner in less than a page of code.  This script
  67. is designed to be used either from the command line, or embedded within
  68. another script, so (for example) you can have your background system /
  69. network monitoring tasks page the appropriate people automatically in case
  70. of meltdowns, etc.
  71.  
  72. Take a look at it:
  73.  
  74.   http://www.columbia.edu/kermit/ck60.html
  75.  
  76. and in particular:
  77.  
  78.   http://www.columbia.edu/kermit/ck60.html#pagers
  79.  
  80. - Frank